home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / tos / updates / update26.zoo / gcc-231 / GMakefile.hp < prev    next >
Encoding:
Text File  |  1992-11-07  |  14.9 KB  |  404 lines

  1. # Makefile for GNU C++ CROSS compiler for the atariST/TT series hosted
  2. #  on a HPUX host (tested only on a HP Snake running hpux 8.x)
  3. #  NOTE: requires alloca.c from the emacs dist.
  4. #
  5.  
  6. # Makefile for GNU C compiler.
  7. #   Copyright (C) 1987 Free Software Foundation, Inc.
  8.  
  9. #This file is part of GNU CC.
  10.  
  11. #GNU CC is distributed in the hope that it will be useful,
  12. #but WITHOUT ANY WARRANTY.  No author or distributor
  13. #accepts responsibility to anyone for the consequences of using it
  14. #or for whether it serves any particular purpose or works at all,
  15. #unless he says so in writing.  Refer to the GNU CC General Public
  16. #License for full details.
  17.  
  18. #Everyone is granted permission to copy, modify and redistribute
  19. #GNU CC, but only under the conditions described in the
  20. #GNU CC General Public License.   A copy of this license is
  21. #supposed to have been given to you along with GNU CC so you
  22. #can know your rights and responsibilities.  It should be in a
  23. #file named COPYING.  Among other things, the copyright notice
  24. #and this notice must be preserved on all copies.
  25.  
  26. .NOEXPORT: # This tells GNU Make version 3
  27.        # not to put all the variables in the environment.
  28.  
  29. CROSSDIR = /net/acae127/home/bammi/atari.hp-ux/cross-gcc
  30. CROSSBIN = $(CROSSDIR)/bin
  31. CROSSLIB = $(CROSSDIR)/lib
  32. CROSSINC = $(CROSSDIR)/include
  33.  
  34. GCC_INCLUDE_DIR = $(CROSSINC)
  35. GPLUSPLUS_INCLUDE_DIR = $(CROSSDIR)/g++-inc
  36.  
  37. DFLAGS= -DCROSSDIR=\"$(CROSSDIR)\"
  38. #CFLAGS = $(DFLAGS) -O +Obb1000 -DUSE_C_ALLOCA -DCROSSATARI=1 -DCROSSHPUX -I./config -I.
  39. CFLAGS = $(DFLAGS) -g -DUSE_C_ALLOCA -DCROSSATARI=1 -DCROSSHPUX -I./config -I.
  40. LDFLAGS = -g
  41. ALLOCA = /net/acae127/home/bammi/lib.hp-ux/alloca.o
  42. #MALLOC1 = /net/acae127/home/bammi/lib.hp-ux/malloc_new6.o
  43. MALLOC1 = 
  44. # host's cc
  45. CC = /bin/cc
  46.  
  47. # OLDCC should not be the GNU C compiler.
  48. BISON = bison
  49. BISONFLAGS =
  50. AR = ar
  51. SHELL = /bin/sh
  52.  
  53. bindir = $(CROSSBIN)
  54. libdir = $(CROSSLIB)
  55.  
  56. # Change this to a null string if obstacks are installed in the
  57. # system library.
  58. OBSTACK=obstack.o
  59.  
  60. # Dependency on obstack, alloca, malloc or whatever library facilities
  61. # are not installed in the system libraries.
  62. LIBDEPS= $(OBSTACK) $(ALLOCA) $(MALLOC)
  63.  
  64. # How to link with both our special library facilities
  65. # and the system's installed libraries.
  66. LIBS = $(OBSTACK) $(ALLOCA) $(MALLOC) $(MALLOC1) $(CLIB)
  67.  
  68. # Language-specific object files for C++.
  69. CPLUS_OBJS = cp-parse.o cp-decl.o cp-decl2.o \
  70.    cp-typeck.o cp-type2.o cp-tree.o cp-ptree.o \
  71.    cp-cvt.o cp-search.o cp-lex.o cp-gc.o cp-call.o \
  72.    cp-class.o cp-init.o cp-method.o cp-except.o \
  73.    cp-expr.o cp-pt.o cp-edsel.o cp-xref.o \
  74.    $(CPLUS_INPUT) cp-spew.o c-common.o
  75.  
  76. # Language-independent object files.
  77. OBJS = toplev.o version.o tree.o print-tree.o stor-layout.o fold-const.o \
  78.  function.o stmt.o expr.o calls.o expmed.o explow.o optabs.o varasm.o \
  79.  rtl.o print-rtl.o rtlanal.o dbxout.o sdbout.o dwarfout.o emit-rtl.o \
  80.  integrate.o jump.o cse.o loop.o unroll.o flow.o stupid.o combine.o \
  81.  regclass.o local-alloc.o global.o reload.o reload1.o caller-save.o \
  82.  insn-peep.o reorg.o sched.o final.o recog.o reg-stack.o \
  83.  insn-recog.o insn-extract.o insn-output.o insn-emit.o \
  84.  insn-attrtab.o aux-output.o getpwd.o
  85.  
  86. GCC_PASSES=gcc cc1 cpp
  87.  
  88. # Files to be copied away after each stage in building.
  89. STAGESTUFF = *.o insn-flags.h insn-config.h insn-codes.h \
  90.  insn-output.c insn-recog.c insn-emit.c insn-extract.c insn-peep.c \
  91.  insn-attr.h insn-attrtab.c \
  92.  stamp-flags stamp-config stamp-codes \
  93.  stamp-output stamp-recog stamp-emit stamp-extract stamp-peep \
  94.  stamp-attr stamp-attrtab \
  95.  genemit genoutput genrecog genextract genflags gencodes genconfig genpeep \
  96.  genattrtab genattr \
  97.  $(GCC_PASSES) $(EXTRA_PARTS) gcc-cross cccp cc1plus cc1obj enquire \
  98.  protoize unprotoize specs collect2
  99.  
  100. # Header files that are made available to programs compiled with gcc.
  101. USER_H = stddef.h stdarg.h assert.h va-*.h limits.h
  102.  
  103. # If you want to recompile everything, just do rm *.o.
  104. # CONFIG_H = config.h tm.h
  105. CONFIG_H =
  106. RTL_H = rtl.h rtl.def machmode.h machmode.def
  107. TREE_H = tree.h real.h tree.def machmode.h machmode.def
  108. CPLUS_TREE_H = $(TREE_H) cp-tree.h cp-tree.def
  109.  
  110. ALL = cc1plus
  111.  
  112. all: $(ALL)
  113.  
  114. cc1plus: $(CPLUS_OBJS) $(OBJS) $(LIBDEPS)
  115.     $(CC) $(CFLAGS) $(LDFLAGS) -o cc1plus $(CPLUS_OBJS) $(OBJS) $(LIBS)
  116.  
  117. # C++ language specific files.
  118.  
  119. cp-parse.o : cp-parse.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
  120.     $(CC) -c $(CFLAGS) cp-parse.c
  121.  
  122. cp-parse.c cp-parse.h : cp-parse.y
  123.     @echo expect 30 shift/reduce conflicts and 14 reduce/reduce conflicts
  124.     $(BISON) $(BISONFLAGS) -d -o cp-parse.c cp-parse.y
  125.     grep '^#define[     ]*YYEMPTY' cp-parse.c >>cp-parse.h
  126.  
  127. cp-spew.o : cp-spew.c $(CONFIG_H) $(CPLUS_TREE_H) \
  128.    cp-parse.h flags.h
  129. cp-lex.o : cp-lex.c $(CONFIG_H) $(CPLUS_TREE_H) \
  130.    cp-parse.h cp-input.c flags.h
  131. cp-decl.o : cp-decl.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h \
  132.   cp-lex.h cp-decl.h stack.h
  133. cp-decl2.o : cp-decl2.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h \
  134.   cp-lex.h cp-decl.h
  135. cp-type2.o : cp-type2.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
  136. cp-typeck.o : cp-typeck.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
  137. cp-class.o : cp-class.c $(CONFIG_H) $(CPLUS_TREE_H) stack.h \
  138.     cp-class.h flags.h
  139. cp-call.o : cp-call.c $(CONFIG_H) $(CPLUS_TREE_H) stack.h cp-class.h \
  140.     flags.h
  141. cp-init.o : cp-init.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
  142. cp-method.o : cp-method.c $(CONFIG_H) $(CPLUS_TREE_H)
  143. cp-cvt.o : cp-cvt.c $(CONFIG_H) $(CPLUS_TREE_H)
  144. cp-search.o : cp-search.c $(CONFIG_H) $(CPLUS_TREE_H) stack.h flags.h
  145. cp-tree.o : cp-tree.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
  146. cp-ptree.o : cp-ptree.c $(CONFIG_H) $(CPLUS_TREE_H)
  147. cp-gc.o : cp-gc.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
  148. cp-except.o : cp-except.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
  149. cp-expr.o : cp-expr.c $(CONFIG_H) $(CPLUS_TREE_H) $(RTL_H) flags.h \
  150.   expr.h insn-codes.h
  151. cp-edsel.o : cp-edsel.c $(CONFIG_H) $(CPLUS_TREE_H) stack.h flags.h
  152. cp-xref.o : cp-xref.c $(CONFIG_H) $(CPLUS_TREE_H)
  153. cp-pt.o : cp-pt.c $(CONFIG_H) $(CPLUS_TREE_H) cp-decl.h cp-parse.h
  154.  
  155. # A file used by all variants of C.
  156.  
  157. c-common.o : c-common.c $(CONFIG_H) $(TREE_H) c-tree.h c-lex.h flags.h
  158.  
  159.  
  160. # Language-independent files.
  161. dumpvers: dumpvers.c
  162.  
  163. version.o: version.c
  164. obstack.o: obstack.c
  165.  
  166. tree.o : tree.c $(CONFIG_H) $(TREE_H) gvarargs.h flags.h function.h
  167. print-tree.o : print-tree.c $(CONFIG_H) $(TREE_H)
  168. stor-layout.o : stor-layout.c $(CONFIG_H) $(TREE_H) function.h
  169. fold-const.o : fold-const.c $(CONFIG_H) $(TREE_H) flags.h 
  170. toplev.o : toplev.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h input.h \
  171.  insn-attr.h xcoffout.h
  172.  
  173. rtl.o : rtl.c $(CONFIG_H) $(RTL_H)
  174.  
  175. print-rtl.o : print-rtl.c $(CONFIG_H) $(RTL_H)
  176. rtlanal.o : rtlanal.c $(CONFIG_H) $(RTL_H)
  177.  
  178. varasm.o : varasm.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h \
  179.    insn-codes.h expr.h hard-reg-set.h regs.h xcoffout.h
  180. function.o : function.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h function.h  \
  181.    insn-flags.h insn-codes.h expr.h regs.h hard-reg-set.h insn-config.h \
  182.    recog.h output.h
  183. stmt.o : stmt.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h function.h  \
  184.    insn-flags.h insn-config.h insn-codes.h hard-reg-set.h expr.h loop.h recog.h
  185. expr.o : expr.c $(CONFIG_H) $(RTL_H) $(TREE_H) gvarargs.h flags.h function.h  \
  186.    insn-flags.h insn-codes.h expr.h insn-config.h recog.h output.h typeclass.h
  187. calls.o : calls.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h expr.h insn-codes.h \
  188.    insn-flags.h
  189. expmed.o : expmed.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h  \
  190.    insn-flags.h insn-config.h insn-codes.h expr.h recog.h real.h
  191. explow.o : explow.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h hard-reg-set.h \
  192.    insn-config.h expr.h recog.h insn-flags.h insn-codes.h
  193. optabs.o : optabs.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h  \
  194.    insn-flags.h insn-config.h insn-codes.h expr.h recog.h
  195. dbxout.o : dbxout.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h regs.h \
  196.    insn-config.h reload.h gstab.h xcoffout.h
  197. sdbout.o : sdbout.c $(CONFIG_H) $(TREE_H) $(RTL_H) gsyms.h flags.h \
  198.    insn-config.h reload.h
  199. dwarfout.o : dwarfout.c $(CONFIG_H) $(TREE_H) $(RTL_H) dwarf.h flags.h \
  200.    insn-config.h reload.h output.h
  201. xcoffout.o : xcoffout.c $(CONFIG_H) $(TREE_H) $(RTL_H) xcoffout.h flags.h
  202. emit-rtl.o : emit-rtl.c $(CONFIG_H) $(RTL_H) flags.h gvarargs.h function.h  \
  203.    regs.h insn-config.h insn-codes.h real.h expr.h
  204.  
  205. integrate.o : integrate.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h integrate.h \
  206.    insn-flags.h insn-config.h insn-codes.h expr.h real.h function.h
  207.  
  208. jump.o : jump.c $(CONFIG_H) $(RTL_H) flags.h hard-reg-set.h regs.h \
  209.    insn-config.h insn-flags.h insn-codes.h expr.h real.h
  210. stupid.o : stupid.c $(CONFIG_H) $(RTL_H) regs.h hard-reg-set.h flags.h
  211.  
  212. cse.o : cse.c $(CONFIG_H) $(RTL_H) regs.h hard-reg-set.h flags.h real.h \
  213.    insn-config.h recog.h
  214. loop.o : loop.c $(CONFIG_H) $(RTL_H) flags.h loop.h insn-config.h \
  215.    insn-flags.h insn-codes.h regs.h hard-reg-set.h recog.h expr.h real.h
  216. unroll.o : unroll.c $(CONFIG_H) $(RTL_H) insn-config.h insn-codes.h \
  217.    integrate.h regs.h flags.h expr.h loop.h
  218. flow.o : flow.c $(CONFIG_H) $(RTL_H) flags.h insn-config.h \
  219.    basic-block.h regs.h hard-reg-set.h output.h
  220. combine.o : combine.c $(CONFIG_H) $(RTL_H) gvarargs.h flags.h  \
  221.    insn-config.h insn-flags.h insn-codes.h insn-attr.h regs.h expr.h \
  222.    basic-block.h recog.h real.h
  223. regclass.o : regclass.c $(CONFIG_H) $(RTL_H) hard-reg-set.h flags.h \
  224.    basic-block.h regs.h insn-config.h recog.h 
  225. local-alloc.o : local-alloc.c $(CONFIG_H) $(RTL_H) flags.h basic-block.h \
  226.    regs.h hard-reg-set.h insn-config.h recog.h output.h
  227. global.o : global.c $(CONFIG_H) $(RTL_H) flags.h  \
  228.    basic-block.h regs.h hard-reg-set.h insn-config.h output.h
  229.  
  230. reload.o : reload.c $(CONFIG_H) $(RTL_H) flags.h \
  231.    reload.h recog.h hard-reg-set.h insn-config.h insn-codes.h regs.h real.h
  232. reload1.o : reload1.c $(CONFIG_H) $(RTL_H) flags.h expr.h \
  233.    reload.h regs.h hard-reg-set.h insn-config.h insn-flags.h insn-codes.h \
  234.    basic-block.h recog.h output.h
  235. caller-save.o : caller-save.c $(CONFIG_H) $(RTL_H) flags.h \
  236.    regs.h hard-reg-set.h insn-config.h basic-block.h recog.h reload.h expr.h
  237. reorg.o : reorg.c $(CONFIG_H) $(RTL_H) conditions.h hard-reg-set.h \
  238.    basic-block.h regs.h insn-config.h insn-attr.h insn-flags.h recog.h \
  239.    flags.h output.h
  240. sched.o : sched.c $(CONFIG_H) $(RTL_H) basic-block.h regs.h hard-reg-set.h \
  241.    flags.h insn-config.h insn-attr.h
  242. final.o : final.c $(CONFIG_H) $(RTL_H) gvarargs.h flags.h regs.h \
  243.    recog.h conditions.h insn-config.h insn-attr.h real.h output.h \
  244.    hard-reg-set.h insn-codes.h gstab.h xcoffout.h
  245. recog.o : recog.c $(CONFIG_H) $(RTL_H)  \
  246.    regs.h recog.h hard-reg-set.h flags.h insn-config.h insn-attr.h \
  247.    insn-flags.h insn-codes.h real.h
  248. reg-stack.o : reg-stack.c $(CONFIG_H) $(RTL_H) $(TREE_H) \
  249.    regs.h hard-reg-set.h flags.h insn-config.h
  250.    
  251. aux-output.o : aux-output.c $(CONFIG_H) \
  252.    $(RTL_H) regs.h hard-reg-set.h real.h insn-config.h conditions.h \
  253.    insn-flags.h output.h insn-attr.h insn-codes.h
  254.  
  255. .PRECIOUS: insn-config.h insn-flags.h insn-codes.h \
  256.   insn-emit.c insn-recog.c insn-extract.c insn-output.c insn-peep.c \
  257.   insn-attr.h insn-attrtab.c
  258.  
  259. insn-config.h : md genconfig
  260.     ./genconfig md > tmp-insn-config.h
  261.     ./move-if-change tmp-insn-config.h insn-config.h
  262.  
  263. insn-flags.h : md genflags
  264.     ./genflags md > tmp-insn-flags.h
  265.     ./move-if-change tmp-insn-flags.h insn-flags.h
  266.  
  267. insn-codes.h : md gencodes
  268.     ./gencodes md > tmp-insn-codes.h
  269.     ./move-if-change tmp-insn-codes.h insn-codes.h
  270.  
  271. insn-emit.o : insn-emit.c $(CONFIG_H) $(RTL_H) expr.h insn-config.h
  272.     $(CC) $(CFLAGS) -c insn-emit.c
  273.  
  274. insn-emit.c : md genemit
  275.     ./genemit md > tmp-insn-emit.c
  276.     ./move-if-change tmp-insn-emit.c insn-emit.c
  277.  
  278. insn-recog.o : insn-recog.c $(CONFIG_H) $(RTL_H) insn-config.h
  279.     $(CC) $(CFLAGS) -c insn-recog.c
  280.  
  281. insn-recog.c : md genrecog
  282.     ./genrecog md > tmp-insn-recog.c
  283.     ./move-if-change tmp-insn-recog.c insn-recog.c
  284.  
  285. insn-extract.o : insn-extract.c $(RTL_H)
  286.     $(CC) $(CFLAGS) -c insn-extract.c
  287.  
  288. insn-extract.c : md genextract
  289.     ./genextract md > tmp-insn-extract.c
  290.     ./move-if-change tmp-insn-extract.c insn-extract.c
  291.  
  292. insn-peep.o : insn-peep.c $(CONFIG_H) $(RTL_H) regs.h
  293.     $(CC) $(CFLAGS) -c insn-peep.c
  294.  
  295. insn-peep.c : md genpeep
  296.     ./genpeep md > tmp-insn-peep.c
  297.     ./move-if-change tmp-insn-peep.c insn-peep.c
  298.  
  299. insn-output.o : insn-output.c $(CONFIG_H) $(RTL_H) regs.h insn-config.h insn-flags.h conditions.h output.h aux-output.c
  300.     $(CC) $(CFLAGS) -c insn-output.c
  301.  
  302. insn-output.c : md genoutput
  303.     ./genoutput md > tmp-insn-output.c
  304.     ./move-if-change tmp-insn-output.c insn-output.c
  305.  
  306. insn-attrtab.o : insn-attrtab.c $(CONFIG_H) $(RTL_H) regs.h real.h output.h \
  307.      insn-attr.h insn-config.h
  308.     $(CC) $(CFLAGS) -c insn-attrtab.c
  309.  
  310. insn-attr.h: md genattr
  311.     ./genattr md > tmp-attr.h
  312.     ./move-if-change tmp-attr.h insn-attr.h
  313.  
  314. insn-attrtab.c: md genattrtab
  315.     ./genattrtab md > tmp-attrtab.c
  316.     ./move-if-change tmp-attrtab.c insn-attrtab.c
  317.  
  318. # Now the programs that generate those files.
  319.  
  320. genconfig : genconfig.o rtl.o $(LIBDEPS)
  321.     $(CC) $(CFLAGS) $(LDFLAGS) -o genconfig genconfig.o rtl.o $(LIBS)
  322.  
  323. genconfig.o : genconfig.c $(RTL_H)
  324.     $(CC) $(CFLAGS) -c genconfig.c
  325.  
  326. genflags : genflags.o rtl.o $(LIBDEPS)
  327.     $(CC) $(CFLAGS) $(LDFLAGS) -o genflags genflags.o rtl.o $(LIBS)
  328.  
  329. genflags.o : genflags.c $(RTL_H)
  330.     $(CC) $(CFLAGS) -c genflags.c
  331.  
  332. gencodes : gencodes.o rtl.o $(LIBDEPS)
  333.     $(CC) $(CFLAGS) $(LDFLAGS) -o gencodes gencodes.o rtl.o $(LIBS)
  334.  
  335. gencodes.o : gencodes.c $(RTL_H)
  336.     $(CC) $(CFLAGS) -c gencodes.c
  337.  
  338. genemit : genemit.o rtl.o $(LIBDEPS)
  339.     $(CC) $(CFLAGS) $(LDFLAGS) -o genemit genemit.o rtl.o $(LIBS)
  340.  
  341. genemit.o : genemit.c $(RTL_H)
  342.     $(CC) $(CFLAGS) -c genemit.c
  343.  
  344. genrecog : genrecog.o rtl.o $(LIBDEPS)
  345.     $(CC) $(CFLAGS) $(LDFLAGS) -o genrecog genrecog.o rtl.o $(LIBS)
  346.  
  347. genrecog.o : genrecog.c $(RTL_H)
  348.     $(CC) $(CFLAGS) -c genrecog.c
  349.  
  350. genextract : genextract.o rtl.o $(LIBDEPS)
  351.     $(CC) $(CFLAGS) $(LDFLAGS) -o genextract genextract.o rtl.o $(LIBS)
  352.  
  353. genextract.o : genextract.c $(RTL_H)
  354.     $(CC) $(CFLAGS) -c genextract.c
  355.  
  356. genpeep : genpeep.o rtl.o $(LIBDEPS)
  357.     $(CC) $(CFLAGS) $(LDFLAGS) -o genpeep genpeep.o rtl.o $(LIBS)
  358.  
  359. genpeep.o : genpeep.c $(RTL_H)
  360.     $(CC) $(CFLAGS) -c genpeep.c
  361.  
  362. genoutput : genoutput.o rtl.o $(LIBDEPS)
  363.     $(CC) $(CFLAGS) $(LDFLAGS) -o genoutput genoutput.o rtl.o $(LIBS)
  364.  
  365. genoutput.o : genoutput.c $(RTL_H)
  366.     $(CC) $(CFLAGS) -c genoutput.c
  367.  
  368. genattr : genattr.o rtl.o $(LIBDEPS)
  369.     $(CC) $(CFLAGS) $(LDFLAGS) -o genattr \
  370.      genattr.o rtl.o $(LIBS)
  371.  
  372. genattr.o : genattr.c $(RTL_H) config.h
  373.     $(CC) -c $(CFLAGS) genattr.c
  374.  
  375. genattrtab : genattrtab.o rtl.o rtlanal.o $(LIBDEPS)
  376.     $(CC) $(CFLAGS) $(LDFLAGS) -o genattrtab \
  377.      genattrtab.o rtl.o rtlanal.o $(LIBS)
  378.  
  379. genattrtab.o : genattrtab.c $(RTL_H) config.h insn-config.h
  380.     $(CC) -c $(CFLAGS) genattrtab.c
  381.  
  382. # gnulib is not deleted because deleting it would be inconvenient
  383. # for most uses of this target.
  384. clean:
  385.     -rm -f *.o *.oo $(STAGESTUFF)
  386.     -rm -f *.s *.s[0-9] *.co *.greg *.lreg *.combine *.flow *.cse *.jump *.rtl *.tree *.loop
  387.     -rm -f core
  388.  
  389. # Get rid of every file that's generated from some other file (except INSTALL).
  390. realclean: clean
  391.     -rm -f $(ALL)
  392.     -rm -f cpp.aux cpp.cps cpp.fns cpp.info cpp.kys cpp.pgs cpp.tps cpp.vrs
  393.     -rm -f errs gnulib TAGS 
  394.     -rm -f core report
  395.     -rm -f internals internals-* internals.?? internals.??s
  396.  
  397. # Copy the files into directories where they will be run.
  398. install: all
  399.     cp cc1plus $(libdir)/gcc-cc1plus
  400.  
  401. force:
  402. #In GNU Make, ignore whether `stage*' exists.
  403. .PHONY: clean realclean
  404.